home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / help / solve < prev    next >
Text File  |  1994-04-25  |  489b  |  22 lines

  1. solve:
  2.  
  3. Syntax:    solve ( A , B )
  4.  
  5. Description:
  6.  
  7.     Solve solves a system of linear equations:
  8.  
  9.         A * X = B,    A is the coefficient matrix
  10.                 B is the right hand side
  11.                 X is the solution
  12.  
  13.     where A is the 1st, and B is the 2nd argument to solve(). The
  14.     columns of B are the individual right hand sides.
  15.  
  16.     Solve returns a matrix of the solutions, where each column
  17.     of the solution corresponds to a column of B.
  18.  
  19.     Solve uses the LAPACK subroutines DGETRF, and ZGETRF.
  20.  
  21. See Also: lu, inv, rcond
  22.